home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / chardet / euctwprober.py < prev    next >
Text File  |  2006-10-21  |  2KB  |  42 lines

  1. ######################## BEGIN LICENSE BLOCK ########################
  2. # The Original Code is mozilla.org code.
  3. #
  4. # The Initial Developer of the Original Code is
  5. # Netscape Communications Corporation.
  6. # Portions created by the Initial Developer are Copyright (C) 1998
  7. # the Initial Developer. All Rights Reserved.
  8. #
  9. # Contributor(s):
  10. #   Mark Pilgrim - port to Python
  11. #
  12. # This library is free software; you can redistribute it and/or
  13. # modify it under the terms of the GNU Lesser General Public
  14. # License as published by the Free Software Foundation; either
  15. # version 2.1 of the License, or (at your option) any later version.
  16. # This library is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  19. # Lesser General Public License for more details.
  20. # You should have received a copy of the GNU Lesser General Public
  21. # License along with this library; if not, write to the Free Software
  22. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  23. # 02110-1301  USA
  24. ######################### END LICENSE BLOCK #########################
  25.  
  26. from mbcharsetprober import MultiByteCharSetProber
  27. from codingstatemachine import CodingStateMachine
  28. from chardistribution import EUCTWDistributionAnalysis
  29. from mbcssm import EUCTWSMModel
  30.  
  31. class EUCTWProber(MultiByteCharSetProber):
  32.     def __init__(self):
  33.         MultiByteCharSetProber.__init__(self)
  34.         self._mCodingSM = CodingStateMachine(EUCTWSMModel)
  35.         self._mDistributionAnalyzer = EUCTWDistributionAnalysis()
  36.         self.reset()
  37.  
  38.     def get_charset_name(self):
  39.         return "EUC-TW"
  40.